home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bind493a.zip / res / Makefile < prev    next >
Makefile  |  1995-12-22  |  4KB  |  113 lines

  1. #
  2. #    from @(#)Makefile    5.16 (Berkeley) 3/14/88
  3. #    $Id: Makefile,v 8.8 1995/12/22 09:53:14 vixie Exp $
  4. #
  5.  
  6. ## ++Copyright++ 1988, 1995
  7. ## -
  8. ## Copyright (c) 1988, 1995
  9. ##    The Regents of the University of California.  All rights reserved.
  10. ## 
  11. ## Redistribution and use in source and binary forms, with or without
  12. ## modification, are permitted provided that the following conditions
  13. ## are met:
  14. ## 1. Redistributions of source code must retain the above copyright
  15. ##    notice, this list of conditions and the following disclaimer.
  16. ## 2. Redistributions in binary form must reproduce the above copyright
  17. ##    notice, this list of conditions and the following disclaimer in the
  18. ##    documentation and/or other materials provided with the distribution.
  19. ## 3. All advertising materials mentioning features or use of this software
  20. ##    must display the following acknowledgement:
  21. ##     This product includes software developed by the University of
  22. ##     California, Berkeley and its contributors.
  23. ## 4. Neither the name of the University nor the names of its contributors
  24. ##    may be used to endorse or promote products derived from this software
  25. ##    without specific prior written permission.
  26. ## 
  27. ## THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  28. ## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30. ## ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  31. ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32. ## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33. ## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34. ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  35. ## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  36. ## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  37. ## SUCH DAMAGE.
  38. ## -
  39. ## Portions Copyright (c) 1993 by Digital Equipment Corporation.
  40. ## 
  41. ## Permission to use, copy, modify, and distribute this software for any
  42. ## purpose with or without fee is hereby granted, provided that the above
  43. ## copyright notice and this permission notice appear in all copies, and that
  44. ## the name of Digital Equipment Corporation not be used in advertising or
  45. ## publicity pertaining to distribution of the document or software without
  46. ## specific, written prior permission.
  47. ## 
  48. ## THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  49. ## WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  50. ## OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  51. ## CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  52. ## DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  53. ## PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  54. ## ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  55. ## SOFTWARE.
  56. ## -
  57. ## --Copyright--
  58.  
  59. DESTDIR =
  60. DESTLIB = /usr/lib
  61. CC= cc
  62. SHELL= /bin/sh
  63. CDEBUG= -O
  64. INCL = ../include
  65. COMPINCL = ../compat/include
  66. AR= ar cru
  67. RANLIB= ranlib
  68. DEFS=    
  69. LOCDEFS= -DUSE_OPTIONS_H
  70.  
  71. AROBJS= ${ARPREF} ${OBJS} ${ARSUFF}
  72.  
  73. CFLAGS=    ${CDEBUG} -I${INCL} -I${COMPINCL} ${DEFS} ${LOCDEFS}
  74.  
  75. SRCS=    herror.c res_debug.c res_data.c \
  76.     res_comp.c res_init.c res_mkquery.c res_query.c res_send.c \
  77.     getnetbyaddr.c getnetbyname.c getnetent.c getnetnamadr.c \
  78.     gethnamaddr.c sethostent.c nsap_addr.c inet_addr.c hostnamelen.c
  79.  
  80. OBJS=    herror.o res_debug.o res_data.o \
  81.     res_comp.o res_init.o res_mkquery.o res_query.o res_send.o \
  82.     getnetbyaddr.o getnetbyname.o getnetent.o getnetnamadr.o \
  83.     gethnamaddr.o sethostent.o nsap_addr.o inet_addr.o hostnamelen.o
  84.  
  85. all: libresolv.a
  86.  
  87. libresolv.a: ${OBJS}
  88.     ${AR} libresolv.a ${AROBJS}
  89.     $(RANLIB) libresolv.a
  90.  
  91. install: ${DESTDIR}${DESTLIB}/libresolv.a
  92.  
  93. ${DESTDIR}${DESTLIB}/libresolv.a: libresolv.a
  94.     ${INSTALL} -c -o bin -g bin -m 644 libresolv.a ${DESTDIR}${DESTLIB}/
  95.     ( cd ${DESTDIR}${DESTLIB} ; $(RANLIB) libresolv.a )
  96.  
  97. .c.o:
  98.     ${CC} ${CPPFLAGS} ${CFLAGS} -c $*.c
  99.     -${LDS} ld -x -r $*.o
  100.     ${LDS} mv a.out $*.o
  101.  
  102. clean: FRC
  103.     rm -f errs a.out core libresolv.a tags .depend
  104.     rm -f *.o *.BAK *.CKP *~ *.orig
  105.  
  106. depend: FRC
  107.     mkdep ${CPPFLAGS} -I${INCL} -I${COMPINCL} ${DEFS} ${SRCS}
  108.  
  109. FRC:
  110.  
  111. # DO NOT DELETE THIS LINE -- mkdep uses it.
  112. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  113.